summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_interrupt_manager.h
blob: 803dc92117939fbde54022aefffaa3f1cda4baa8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "common/common_types.h"

namespace Kernel {

class KernelCore;

namespace KInterruptManager {
void HandleInterrupt(KernelCore& kernel, s32 core_id);
void SendInterProcessorInterrupt(KernelCore& kernel, u64 core_mask);

} // namespace KInterruptManager

} // namespace Kernel